home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 7 / BBS in a Box - Macintosh - Volume VII (BBS in a Box) (January 1993).iso / Files / Hyper / C-Cl / ClassAdministrator1.3.cpt / Classroom Administrator / card_3715.txt < prev    next >
Text File  |  1988-04-18  |  3KB  |  109 lines

  1. -- card: 3715 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 3264
  5. -- name: Closed Book
  6. ----- HyperTalk script -----
  7. on OpenCard
  8.   global report, teacher
  9.   show card field "Announcement"
  10.   enablemenu report, 0, false
  11.   enablemenu teacher, 0, false
  12. end OpenCard
  13.  
  14. on CloseCard
  15.   global report, teacher
  16.   repeat with x = 1 to 6
  17.     enablemenu report, x, true
  18.   end repeat
  19.   enablemenu teacher, 0, true
  20. end CloseCard
  21.  
  22.  
  23.  
  24.  
  25.  
  26. -- part 3 (field)
  27. -- low flags: 81
  28. -- high flags: 0004
  29. -- rect: left=109 top=43 right=303 bottom=426
  30. -- title width / last selected line: 0
  31. -- icon id / first selected line: 0 / 0
  32. -- text alignment: 0
  33. -- font id: 21
  34. -- text size: 12
  35. -- style flags: 256
  36. -- line height: 16
  37. -- part name: Announcement
  38. ----- HyperTalk script -----
  39. On MouseUp
  40.   Hide card field id 3
  41. end MouseUp
  42.  
  43.  
  44.  
  45. -- part 5 (field)
  46. -- low flags: 00
  47. -- high flags: 0001
  48. -- rect: left=222 top=302 right=319 bottom=367
  49. -- title width / last selected line: 0
  50. -- icon id / first selected line: 0 / 0
  51. -- text alignment: 0
  52. -- font id: 21
  53. -- text size: 12
  54. -- style flags: 768
  55. -- line height: 16
  56. -- part name: 
  57.  
  58.  
  59. -- part contents for background part 1
  60. ----- text -----
  61. Classroom
  62. Administrator
  63. 1.3
  64.  
  65. -- part contents for card part 3
  66. ----- text -----
  67.               Classroom Administrator 1.3
  68.                    A shareware program
  69.  
  70. Use the Configuration Menu to:
  71.      1) establish your grading curve 
  72.      2) fill in your seating charts for periods 1-7.  
  73.      3) set up your stacks automatically.
  74.  
  75. If you like this program and would like to receive full documentation and updates, 
  76. please send $10 to:
  77.  
  78.                  Larry Cooperman
  79.                  Education Design
  80.                  5832 Ocean View Dr.
  81.                  Oakland, CA  94618
  82.  
  83. -- part contents for card part 5
  84. ----- text -----
  85. By Larry Cooperman
  86.  
  87. -- part contents for card part 8
  88. ----- text -----
  89. EnableMenu lets you enable and disable items in menus you've created using the NewMenu* XFCN.  Examples:
  90.  
  91.   EnableMenu myMenu, 1, FALSE 
  92.   EnableMenu myMenu, 3, (the userLevel>2)
  93.  
  94. The first example will always disable the first menu item in the menu "myMenu".  The second example will disable the third item in "myMenu" IF the userLevel is greater than 2.
  95.  
  96. Passing an item number of 0 (zero) will enable or disable the ENTIRE menu.
  97.  
  98. •••
  99.  
  100. All the credit, (even the descriptions above) go to the creator of this ingenious XCMD:
  101.  
  102. Nine to Five Software Company
  103. P.O. Box 915
  104. Greenwood, IN  46142
  105. (317) 887-2154
  106. & Michael Long
  107.  
  108. See also NewMenu*, CheckMenu*, DeleteMenu*,  ChangeMenu*, and ShowMenu*
  109.